

        /* ================= HEADER ================= */
        .header {
            background: linear-gradient(to right, #0d47a1, #1976d2);
            color: #fff;
            padding: 60px 20px;
            text-align: center;
        }

        .header h1 {
            color: #fff
        }

        /* ================= SECTION ================= */
        .section {
            background: #fff;
            padding: 35px;
            margin-top: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .section h2 {
            margin-top: 0;
            color: #000000;
        }

        /* ================= GALLERY ================= */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* ================= TEACHER ================= */

        #director {
            color: black;
        }

        .teacher {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .teacher img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid #1976d2;
        }

        /* ================= ACHIEVEMENTS ================= */
        .achievements {
            background: #0d47a1;
            padding: 50px 0;
            margin-top: 40px;
        }

        .achievement-flex {
            display: flex;
            justify-content: space-around;
            text-align: center;
            color: #fff;
        }

        .ach-box h3 {
            font-size: 40px;
            margin: 0;
        }

        .ach-box p {
            margin-top: 5px;
            font-size: 16px;
        }

        /* ================= CTA ================= */
        .cta {
            background: #1976d2;
            color: #fff;
            text-align: center;
            padding: 40px 20px;
            border-radius: 10px;
            margin: 40px 0;
        }

        .cta h2 {
            color: #fff
        }

        /* ================= MOBILE 420px ================= */
        @media(max-width:420px) {
            .teacher {
                flex-direction: column;
                text-align: center;
            }

            .teacher img {
                width: 100%;
                max-width: 300px;
                height: auto;
                border-radius: 15px;
            }

            .achievement-flex {
                flex-direction: column;
                gap: 25px;
            }
        }
        
        